home *** CD-ROM | disk | FTP | other *** search
- ////////////////////////////////////////////////////////////////////////////////////////////
- //
- // PRODUCT: Norton Internet Security/Symantec Desktop Firewall
- //
- // NAME: wiz-Done.js (Javascript file for wiz-Done.HTM)
- //
- // Copyright (c) 2001 by Symantec Corporation. All rights reserved.
- //
- ////////////////////////////////////////////////////////////////////////////////////////////
-
-
- function Page_GoNext()
- {
- return true;
- }
-
- function Page_GoBack()
- {
- return true;
- }
-
- function OnLoad()
- {
- window.NISTitleName1.innerText = WrapNisum.ProductName;
-
- // Modify Parental/Productivity Text HERE..
- var sProductType = WrapNisum.ProductType
-
- if(sProductType == "PT_PRO")
- {
- window.ParentalProductivityTitle1.innerText = StrID("ParentalControl_Title_NISPRO");
- window.ParentalProductivityTitle2.innerText = StrID("ParentalControl_Title_NISPRO");
- }
-
- // Enable back button
- window.parent.frames("bottom").BackB.disabled = false
-
- // Give focus to Finish button.
- window.parent.frames("bottom").FinishB.focus();
- }
-
- function OnKeyDownHandler()
- {
- // Last Control Tab over to the <back, next, close> button.
- var VK_ESCAPE = 27;
-
- if (window.event.keyCode == VK_ESCAPE)
- {
- // Escape key.. We want to exit out of the wizard..
- parent.window.navigate("res://closeme.xyz");
-
- }
-
- }
-